@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600;700&display=swap');
        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/img/praia.webp') center/cover no-repeat;
            height: 100vh;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }
        .header-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        .header-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
        }
        .header-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        }
        .btn-primary {
            background: #ff5a5f;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255,90,95,0.3);
        }
        .btn-primary:hover {
            background: #e14a4f;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(225,74,79,0.4);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: #ff5a5f;
        }
        .logo i {
            margin-right: 8px;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ff5a5f;
        }
        .instagram-link {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        /* Sections */
        section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: #ff5a5f;
            display: block;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Sobre a Casa */
        .about {
            background: white;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ff5a5f;
        }
        .about-text ul {
            list-style: none;
            margin-top: 1.5rem;
        }
        .about-text ul li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }
        .about-text ul li i {
            color: #ff5a5f;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Galeria */
        .gallery {
            background: #f1f3f5;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            
            /* Controla a proporção desejada - mude conforme o gosto */
            aspect-ratio: 4 / 3;          /* mais quadrado/retangular */
            /* aspect-ratio: 3 / 4;       ← mais vertical (retrato) */
            /* aspect-ratio: 1 / 1;       ← quadrado perfeito */
            
            background: #ddd;             /* cor de fundo enquanto carrega */
        }

        .gallery-item:hover {
            transform: translateY(-8px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;           /* ← o mais importante: corta sem distorcer */
            object-position: center;
        }
        /* Atrações */
        .attractions {
            background: white;
        }
        .attraction-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .card-img {
            height: 200px;
            overflow: hidden;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .card:hover .card-img img {
            transform: scale(1.1);
        }
        .card-body {
            padding: 1.5rem;
        }
        .card-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #222;
        }
        .card-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* Depoimentos */
        .testimonials {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        .testimonial {
            padding: 2rem;
            font-style: italic;
            font-size: 1.1rem;
        }
        .testimonial-author {
            margin-top: 1.5rem;
            font-weight: 600;
            font-size: 1rem;
        }

        #localizacao {
            background-color:teal;
            padding: 0;
        }

        /* CTA Final */
        .cta-final {
            background: #ff5a5f;
            color: white;
            text-align: center;
        }
        .cta-final h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        .cta-final .btn-primary {
            background: white;
            color: #ff5a5f;
            font-weight: 700;
        }
        .cta-final .btn-primary:hover {
            background: #f8f9fa;
            color: #e14a4f;
        }

        /* Footer */
        footer {
            background: #222;
            color: #ccc;
            padding: 3rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 0.6rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: #ff5a5f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: white;
            color: #ff5a5f;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.85rem;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2.5rem;
            }
            .about-grid, .nav-links {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .nav-links {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .section-title {
                font-size: 2rem;
            }
            .gallery-item {
            aspect-ratio: 4 / 3;      /* um pouco mais largo no celular */
            }
        }

        @media (max-width: 980px) {
            .gallery-item {
            aspect-ratio: 5 / 4;      /* um pouco mais quadrado no desktop */
            }
        }

        /* Mobile Menu Icon */
        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }