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

        body {
            
            color: #4f4f4f;
            background-color: #ffffff;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 40px;
        }
        
        section {
            padding: 60px 0;
        }

        .section-subtitle {
            text-transform: uppercase;
            color: #d18261;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        h1, h2, h3, h4 {
            color: #333;
        }

        p {
            color: #666;
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
            border-radius: 12px;
        }
        
        .text-center {
            text-align: center;
        }

        /* --- Header / Cabeçalho --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #fff;
        }

        .header .logo img {
            width: 120px;
        }

        .header nav a {
            margin: 0 15px;
            font-weight: 500;
            color: #555;
            transition: color 0.3s ease;
        }

        .header nav a:hover {
            color: #d18261;
        }

        .header .login-btn {
            border: 1px solid #d18261;
            padding: 8px 25px;
            border-radius: 20px;
            color: #d18261;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .header .login-btn:hover {
            background-color: #d18261;
            color: #fff;
        }
        
        /* --- Seção Hero --- */
        .hero {
            text-align: center;
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            max-width: 600px;
            margin: 0 auto 15px auto;
            line-height: 1.3;
        }

        .hero p {
            max-width: 550px;
            margin: 0 auto;
        }

        /* --- Seção "Como tudo começou" --- */
        .about-story {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
        }
        
        .about-story-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .about-story-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .about-story-images img {
            width: 100%;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }
        
        .about-story-images img:hover {
            transform: scale(1.05);
        }
        
        /* --- Seção "O que guia" --- */
        .guiding-principles {
            text-align: center;
        }
        
        .guiding-principles h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .guiding-principles > p {
            max-width: 550px;
            margin: 0 auto 50px auto;
        }
        
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .principle-card {
            border: 1px solid #e0e0e0;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }
        
        .principle-card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #d18261;
        }
        
        .principle-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* --- Seção CTA (Call to Action) --- */
        .cta-section .container {
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: #fff;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }
        
        .cta-section h2 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        
        .cta-section p {
            color: #ecf0f1;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        
        .cta-button {
            background-color: #fff;
            color: #333;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 600;
            transition: transform 0.3s ease;
            display: inline-block;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }
        
        /* --- Seção de Contato --- */
        .contact-section h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .contact-section > .container > p {
            max-width: 550px;
            margin: 0 auto 50px auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .contact-card {
            border: 1px solid #e0e0e0;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }
        
        .contact-card i {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .contact-card .fa-whatsapp { color: #25D366; }
        .contact-card .fa-envelope { color: #3498db; }
        .contact-card .fa-instagram { color: #E4405F; }
        
        .contact-card h3 {
            font-size: 1.3rem;
        }

        .contact-card p {
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .contact-button {
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 500;
            color: #fff;
            transition: opacity 0.3s;
        }
        
        .contact-button:hover {
            opacity: 0.9;
        }
        
        .btn-whatsapp { background-color: #25D366; }
        .btn-email { background-color: #3498db; }
        .btn-instagram { background-color: #E4405F; }
        
        /* --- Seção Endereço --- */
        .address-section .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
            border: 1px solid #e0e0e0;
            padding: 40px;
            border-radius: 12px;
        }
        
        .address-info i {
            font-size: 2rem;
            color: #d18261;
            margin-bottom: 15px;
        }
        
        .address-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .address-actions {
            margin-top: 20px;
        }
        
        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #d18261;
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .map-link:hover {
            background-color: #b86d4f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(209, 130, 97, 0.3);
        }
        
        .google-map-embed {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* --- Footer (simplificado, baseado nos anteriores) --- */
        .footer {
            background-color: #fafafa;
            padding: 60px 40px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.9rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        
        .footer-column h4 {
            margin-bottom: 15px;
        }

        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 8px;
        }

        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .about-story, .contact-grid, .address-section .container {
                grid-template-columns: 1fr;
            }
            .principles-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .about-story-text {
                text-align: center;
            }
            .about-story-images {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            .google-map-embed {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            .header {
                flex-direction: column;
                gap: 20px;
            }
            .principles-grid, .contact-grid {
                gap: 15px;
            }
            .about-story-images {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            h1, h2 {
                font-size: 2rem !important;
            }
            .google-map-embed {
                height: 200px;
            }
            .address-section .container {
                padding: 20px;
            }
        }