/* ===================================
   VARIÁVEIS E CORES
   =================================== */
:root {
    /* Paleta de cores do cartão */
    --primary-blue: #0066cc;
    --primary-dark-blue: #003d7a;
    --light-blue: #66b3ff;
    --cyan-light: #00ccff;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --accent-green: #25d366;
    
    /* Fontes */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET E ESTILOS GLOBAIS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* ===================================
   HEADER E NAVEGAÇÃO
   =================================== */
.header {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    padding: var(--spacing-md) 0;
}

.navbar {
    padding: 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-width: fit-content;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition-slow);
    box-shadow: 0 4px 12px rgba(0, 204, 255, 0.3);
    position: relative;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--cyan-light) 0%, var(--light-blue) 50%, var(--white) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.logo-section:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 204, 255, 0.5);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-light);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.social-header {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.social-header a {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-header a:hover {
    color: var(--cyan-light);
    transform: scale(1.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   HERO SECTION COM SLIDER
   =================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--primary-dark-blue);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.6) 0%, rgba(0, 102, 204, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 85%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
    opacity: 1;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    line-height: 1.5;
    width: 100%;
    opacity: 1;
}

.cta-button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-green) 0%, #1da853 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-slow);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    opacity: 1;
    margin-top: var(--spacing-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Controles do Slider */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-md);
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Dots do Slider */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ===================================
   SLOGAN SECTION
   =================================== */
.slogan-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.slogan-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    animation: slideInDown 0.8s ease-out;
    font-weight: 700;
}

.slogan-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
}

.slogan-content .cta-button {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* ===================================
   SERVIÇOS SECTION
   =================================== */
.servicos {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--light-gray);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark-blue);
    animation: slideInDown 0.8s ease-out;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-2xl);
    animation: slideInUp 0.8s ease-out;
    font-weight: 300;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.servico-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-slow);
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.08);
    border-top: 4px solid var(--primary-blue);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.servico-card:nth-child(1) { animation-delay: 0.1s; }
.servico-card:nth-child(2) { animation-delay: 0.2s; }
.servico-card:nth-child(3) { animation-delay: 0.3s; }
.servico-card:nth-child(4) { animation-delay: 0.4s; }
.servico-card:nth-child(5) { animation-delay: 0.5s; }
.servico-card:nth-child(6) { animation-delay: 0.6s; }

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15);
    border-top-color: var(--accent-green);
}

.servico-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--accent-green) 0%, #1da853 100%);
}

.servico-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark-blue);
    font-weight: 700;
}

.servico-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ===================================
   SOBRE SECTION
   =================================== */
.sobre {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.sobre-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.8s ease-out;
    font-weight: 700;
}

.sobre-text p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: slideInLeft 0.8s ease-out 0.1s both;
    font-weight: 300;
}

.beneficios-list {
    list-style: none;
}

.beneficios-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
    font-weight: 300;
}

.beneficios-list li:nth-child(1) { animation-delay: 0.2s; }
.beneficios-list li:nth-child(2) { animation-delay: 0.3s; }
.beneficios-list li:nth-child(3) { animation-delay: 0.4s; }
.beneficios-list li:nth-child(4) { animation-delay: 0.5s; }
.beneficios-list li:nth-child(5) { animation-delay: 0.6s; }

.beneficios-list i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.sobre-image {
    animation: slideInRight 0.8s ease-out;
}

.sobre-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    transition: var(--transition);
}

.sobre-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   CONTATO SECTION
   =================================== */
.contato {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.08);
    transition: var(--transition);
    animation: slideInLeft 0.8s ease-out;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--accent-green);
}

.info-instruction {
    padding: var(--spacing-lg);
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.info-instruction p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-instruction p:first-child {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.contato-form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.08);
    animation: slideInRight 0.8s ease-out;
}

.contato-form h3 {
    color: var(--primary-dark-blue);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    resize: vertical;
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--spacing-sm) center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.submit-btn {
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: 0;
    line-height: 1;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--cyan-light) 0%, var(--light-blue) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.footer-logo-text h4 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-tagline {
    margin: 0;
    padding: 0;
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--cyan-light) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    line-height: 0.9;
    display: block;
}

.footer-section h4 {
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    margin-top: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    font-weight: 300;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--cyan-light);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-weight: 300;
    font-size: 0.9rem;
}

.powered-by {
    color: var(--cyan-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.powered-by:hover {
    color: var(--white);
}

/* ===================================
   ANIMAÇÕES
   =================================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preload {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .hamburger {
        display: flex;
    }

    .navbar-content {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .logo-section {
        gap: var(--spacing-sm);
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .social-header {
        gap: var(--spacing-sm);
    }

    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content {
        width: 95%;
    }

    .slider-controls {
        bottom: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 65px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .servicos {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .servico-card {
        padding: var(--spacing-md);
    }

    .sobre {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .sobre-text h3 {
        font-size: 1.5rem;
    }

    .contato {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .slogan-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .slogan-content h2 {
        font-size: 2rem;
    }

    .footer {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    }

    .footer-content {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
    }

    .header {
        padding: var(--spacing-sm) 0;
    }

    .navbar-content {
        gap: var(--spacing-sm);
    }

    .logo-section {
        gap: var(--spacing-xs);
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-text .tagline {
        font-size: 0.65rem;
    }

    .social-header {
        gap: var(--spacing-sm);
    }

    .social-header a {
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        height: 280px;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-content {
        width: 90%;
    }

    .cta-button {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .servicos {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .servico-card {
        padding: var(--spacing-md);
    }

    .servico-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .servico-card h3 {
        font-size: 1.3rem;
    }

    .servico-card p {
        font-size: 0.9rem;
    }

    .sobre {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .sobre-text h3 {
        font-size: 1.3rem;
    }

    .sobre-text p {
        font-size: 0.9rem;
    }

    .beneficios-list li {
        font-size: 0.9rem;
    }

    .contato {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contato-info {
        gap: var(--spacing-md);
    }

    .info-item {
        padding: var(--spacing-md);
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contato-form {
        padding: var(--spacing-md);
    }

    .contato-form h3 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: var(--spacing-sm);
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: var(--spacing-md);
    }

    .slider-controls {
        bottom: 12px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .slider-dots {
        bottom: 60px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slogan-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .slogan-content h2 {
        font-size: 1.5rem;
    }

    .slogan-content p {
        font-size: 0.95rem;
    }

    .footer {
        padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
