@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset e variáveis */
:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #2962ff;
    --text-color: #263238;
    --light-text: #546e7a;
    --background: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --container-padding: 2rem;
}

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Estilos da Navbar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar img {
    height: 50px;
}

.nav-bar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-bar ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-bar ul li a:hover {
    color: var(--accent-color);
}

.nav-bar button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(41, 98, 255, 0.2);
}

.nav-bar button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 98, 255, 0.3);
}

.nav-bar button a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-mobile div {
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    margin: 8px;
    transition: 0.3s;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .menu-mobile {
        display: block;
    }

    .nav-bar ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: 0.5s ease;
        z-index: 999;
    }

    .nav-bar ul.active {
        right: 0;
    }

    .menu-mobile.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .menu-mobile.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -7px);
    }

    .nav-bar button {
        display: none;
    }

    .nav-bar ul li a {
        font-size: 1.2rem;
        color: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: 1rem;
    }

    .nav-bar img {
        height: 40px;
    }

    .menu-mobile div {
        width: 25px;
        margin: 6px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--background);
    overflow: hidden;
    padding-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    z-index: 2;
    min-height: calc(100vh - 80px);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 1000px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.hero-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    color: var(--text-color);
    padding: 2rem 0;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    line-height: 1.2;
    letter-spacing: -2px;
}

.hero-text button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.2);
}

.hero-text button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.3);
    background: var(--secondary-color);
}


/* Marca d'água */
.hero::before {
    content: ' ';
    position: absolute;
    font-size: 30rem;
    font-weight: 900;
    color: rgba(26, 35, 126, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    animation: rotate 40s linear infinite;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -20px;
}

/* About Section */
.about {
    position: relative;
    min-height: 100vh;
    background: var(--background);
    overflow: hidden;
    padding: 2rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    min-height: calc(100vh - 4rem);
}

.about-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    color: var(--text-color);
    padding: 2rem 0;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    max-width: 600px;
    line-height: 1.6;
}

.about-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    padding: 20px;
    max-width: 1000px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.about-text button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
}


.about-text button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.2);
}

.about-text button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.3);
    background: var(--secondary-color);
}
 
.equipments-features button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.2);
}

.equipments-features button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.3);
    background: var(--secondary-color);
}

/* Gallery Section */
.gallery {
    position: relative;
    padding: 6rem 0;
    background: var(--background);
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.03;
    z-index: 1;
}

.gallery-content {
    position: relative;
    z-index: 2;
}

.gallery h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-images img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Media Queries para Gallery */
@media (max-width: 1200px) {
    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .gallery {
        padding: 4rem 0;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-images img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0;
    }

    .gallery h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    .gallery-images img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 2rem 0;
    }

    .gallery h2 {
        font-size: 2rem;
    }

    .gallery-images {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-images img {
        height: 250px;
    }
}

/* Animações */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero::before {
        font-size: 25rem;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    .about-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero::after {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.05;
    }

    .hero-content,
    .about-content {
        gap: 2rem;
    }

    .hero-text p,
    .about-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {

    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero::after {
        opacity: 0.08;
    }

    .hero-image,
    .about-image {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero::before {
        font-size: 20rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .hero-text,
    .about-text {
        align-items: center;
    }

    .hero-text p,
    .about-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero::after {
        opacity: 0.1;
    }

    .hero::before {
        font-size: 15rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-text p,
    .about-text p {
        font-size: 1rem;
    }

    .hero-text button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Equipments Section */
.equipments {
    position: relative;
    min-height: 100vh;
    background: var(--background);
    overflow: hidden;
    padding: 6rem 0;
}

.equipments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.03;
    z-index: 1;
}

.equipments-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
}

.equipments-text {
    flex: 1;
    max-width: 600px;
}

.equipments-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

.equipments-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.equipments-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.equipments-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.feature-text {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.equipments-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equipments-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 30px;
    transform: rotate(-3deg);
    z-index: -1;
}

.equipments-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.equipments-image:hover img {
    transform: translateY(-10px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .equipments-content {
        gap: 4rem;
    }

    .equipments-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .equipments {
        padding: 4rem 0;
    }

    .equipments-content {
        flex-direction: column;
        text-align: center;
    }

    .equipments-text {
        max-width: 100%;
    }

    .equipments-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .equipments-features {
        justify-content: center;
    }

    .equipments-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .equipments {
        padding: 3rem 0;
    }

    .equipments-text h2 {
        font-size: 2.5rem;
    }

    .equipments-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .equipments-image::before {
        transform: rotate(-2deg);
    }
}

@media (max-width: 480px) {
    .equipments {
        padding: 2rem 0;
    }

    .equipments-text h2 {
        font-size: 2rem;
    }

    .equipments-text p {
        font-size: 1rem;
    }

    .feature-item {
        gap: 0.8rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .equipments-image::before {
        transform: rotate(-1deg);
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show .modal-caption {
    opacity: 1;
}

/* Media Queries para Modal */
@media (max-width: 768px) {
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }

    .modal-caption {
        font-size: 1rem;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 25px;
    }

    .modal-caption {
        font-size: 0.9rem;
        bottom: 10px;
        padding: 0.4rem 0.8rem;
    }
}

/* Contact Section */
.solicitar-orcamento {
    padding: 80px 0;
    background: var(--light-bg);
}

.solicitar-orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.solicitar-orcamento-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solicitar-orcamento-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.solicitar-orcamento-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.solicitar-orcamento-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.contact-card .btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.contact-card .btn-contact:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.contact-card.whatsapp i {
    color: #25D366;
}

.contact-card.email i {
    color: #007bff;
}

/* Media Queries para Contact Section */
@media (max-width: 1200px) {
    .solicitar-orcamento-content {
        gap: 40px;
    }

    .contact-info {
        padding: 25px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .solicitar-orcamento-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: -1;
    }

    .solicitar-orcamento-text h2 {
        font-size: 2.2rem;
    }

    .map-container {
        height: 300px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .solicitar-orcamento {
        padding: 60px 0;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        margin-bottom: 15px;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .solicitar-orcamento-text h2 {
        font-size: 2rem;
    }

    .solicitar-orcamento-text p {
        font-size: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px;
        min-height: 260px;
    }

    .contact-card i {
        font-size: 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contact-card .btn-contact {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .map-container {
        height: 280px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .solicitar-orcamento {
        padding: 40px 0;
    }

    .contact-info {
        padding: 20px;
        border-radius: 10px;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-item {
        margin-bottom: 12px;
        gap: 12px;
    }

    .contact-item i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .solicitar-orcamento-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .solicitar-orcamento-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .contact-card {
        padding: 20px 15px;
        min-height: 240px;
        border-radius: 10px;
    }

    .contact-card i {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .contact-card .btn-contact {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 200px;
    }

    .map-container {
        height: 250px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .contact-info {
        padding: 15px;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-item {
        margin-bottom: 10px;
        gap: 10px;
    }

    .contact-item i {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .solicitar-orcamento-text h2 {
        font-size: 1.6rem;
    }

    .solicitar-orcamento-text p {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 15px;
        min-height: 220px;
    }

    .contact-card i {
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .contact-card .btn-contact {
        padding: 8px 15px;
        font-size: 0.85rem;
        max-width: 180px;
    }

    .map-container {
        height: 220px;
    }
}