/* Contato */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* ============ CORES DO DESIGN ============ */
        :root {
            --primary-teal: #1a9b8e;
            --primary-dark: #1a3a47;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2c3e50;
        }

        /* ============ HEADER ============ */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .header-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-teal);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-teal);
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-links a:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(26, 155, 142, 0.4);
        }

        /* ============ HERO ============ */
        .hero {
            background: url('/uploads/banner-internas.webp') right center/cover no-repeat;
            color: var(--white);
            padding: 0 2rem;
            height: 350px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-content p {
            font-size: 1rem;
            color: #d0d8dd;
            margin-bottom: 0;
            line-height: 1.8;
            max-width: 600px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        /* ============ INTRODUÇÃO ============ */
        .intro {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .intro-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .intro-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .intro-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .intro-header p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .intro-header p:last-child {
            margin-bottom: 0;
        }

        /* ============ FORMULÁRIO ============ */
        .formulario {
            padding: 5rem 2rem;
            background-color: var(--light-gray);
        }

        .formulario-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .formulario-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .formulario-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .formulario-header p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
            text-align: center;
        }

        .formulario-descricao {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
            text-align: justify;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-row-full {
            display: grid;
            grid-template-columns: 1fr;
        }

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-submit:hover {
            background-color: var(--primary-teal);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 155, 142, 0.3);
        }

        /* ============ CONTATOS DIRETOS ============ */
        .contatos-diretos {
            padding: 5rem 2rem;
            background-color: var(--white);
        }

        .contatos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contatos-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contatos-header h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contatos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .contato-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contato-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .contato-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--white);
        }

        .contato-card h3 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contato-card p {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .contato-info {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-teal);
            word-break: break-all;
        }

        .contato-info a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contato-info a:hover {
            color: var(--primary-dark);
        }

        /* ============ ENDEREÇO ============ */
        .endereco {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #1a9b8e 0%, #2a5a6e 100%);
            color: var(--white);
        }

        .endereco-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .endereco-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .endereco-header h2 {
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .endereco-header p {
            font-size: 1rem;
            color: #d0d8dd;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .endereco-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .endereco-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .endereco-info h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .endereco-info p {
            font-size: 1rem;
            color: #d0d8dd;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .endereco-info p:last-child {
            margin-bottom: 0;
        }

        .endereco-mapa {
            border-radius: 12px;
            overflow: hidden;
        }

        .endereco-mapa iframe {
            width: 100%;
            height: 400px;
            border: none;
            display: block;
        }

        .endereco-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cta-button {
            background-color: var(--white);
            color: var(--primary-dark);
            padding: 0.85rem 1.8rem;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
        }

        .cta-button:hover {
            background-color: var(--primary-teal);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ============ FOOTER ============ */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 3rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-col-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-logo img {
            height: auto;
            width: 180px;
            margin-bottom: 1rem;
        }

        .footer-instagram {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-instagram:hover {
            background-color: var(--white);
            color: var(--primary-teal);
            transform: translateY(-3px);
        }

        .footer-col-info h3,
        .footer-col-responsavel h3,
        .footer-col-menu h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-col-info p,
        .footer-col-responsavel p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #d0d8dd;
            margin-bottom: 1rem;
        }

        .footer-col-info a,
        .footer-col-menu a {
            color: #d0d8dd;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-col-info a:hover,
        .footer-col-menu a:hover {
            color: var(--primary-teal);
        }

        .footer-col-responsavel strong {
            color: var(--white);
            font-weight: 600;
        }

        .footer-col-menu ul {
            list-style: none;
        }

        .footer-col-menu li {
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #99a8b0;
        }

        .footer-bottom a {
            color: #d0d8dd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--primary-teal);
        }

        /* ============ DROPDOWN MENU (SYNC) ============ */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown > a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-dropdown > a:hover {
            color: var(--primary-teal);
        }

        .nav-dropdown > a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

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

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            border: 1px solid #eee;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            min-width: 250px;
            z-index: 1001;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            pointer-events: auto !important;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block !important;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5f5;
            color: var(--primary-teal);
            padding-left: 2rem;
        }

        /* ============ ANIMAÇÕES ============ */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            nav {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            nav a {
                font-size: 0.85rem;
            }

            .social-links {
                gap: 0.75rem;
            }

            .social-links a {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .hero {
                height: 280px;
            }

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

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

            .intro-header h2,
            .formulario-header h2,
            .contatos-header h2,
            .endereco-header h2 {
                font-size: 1.8rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contatos-grid {
                grid-template-columns: 1fr;
            }

            .endereco-grid {
                grid-template-columns: 1fr;
            }

            .endereco-mapa iframe {
                height: 300px;
            }

            .endereco-ctas {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
                text-align: center;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
                margin-bottom: 1.5rem;
            }

            .footer-col-logo {
                grid-column: 1 / -1;
            }

            .footer-logo img {
                height: auto;
                width: 150px;
                margin-bottom: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0.75rem;
            }

            nav {
                gap: 0.75rem;
            }

            nav a {
                font-size: 0.75rem;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-links a {
                width: 28px;
                height: 28px;
            }

            .hero {
                height: 220px;
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 1.2rem;
            }

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

            .intro,
            .formulario,
            .contatos-diretos,
            .endereco {
                padding: 2rem 1rem;
            }

            .intro-header h2,
            .formulario-header h2,
            .contatos-header h2,
            .endereco-header h2 {
                font-size: 1.5rem;
            }

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

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 0.85rem;
                padding: 0.75rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-col-logo {
                grid-column: 1;
            }

            .footer-logo img {
                height: auto;
                width: 120px;
                margin-bottom: 0.6rem;
            }

            .footer-col-info h3,
            .footer-col-responsavel h3,
            .footer-col-menu h3 {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
            }

            .footer-col-info p,
            .footer-col-responsavel p,
            .footer-col-menu li {
                font-size: 0.8rem;
                margin-bottom: 0.6rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
                padding-top: 1.5rem;
            }
        }
    
        @media (max-width: 768px) {
            .hero {
                background: url('/uploads/banner-mobile-internas.webp') center/cover no-repeat !important;
                height: 280px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                height: 220px;
                padding: 0 1rem;
            }
            .hero-content h1 {
                font-size: 1.2rem;
            }
        }
