/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f8cd1, #7bb9ff, #fffaeb);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.logo-photo:hover .logo-placeholder::before {
    left: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #fffaeb;
    color: #4f8cd1;
}

.nav-link i {
    font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4f8cd1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-top: 70px;
    padding-bottom: 50px;
    background-color: #fffaeb;
    background-image: url('fotos/background.JPEG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #4f8cd1, #7bb9ff);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(79, 140, 209, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(79, 140, 209, 0.5);
}

.hero-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.image-container.active {
    opacity: 1;
}

.image-container.prev {
    opacity: 1;
}

.image-container.next {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.family-1,
.family-2,
.family-3 {
    background: linear-gradient(135deg, #7bb9ff 0%, #fffaeb 50%, #fffaeb 100%);
}

.family-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(79, 140, 209, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #4f8cd1;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
    z-index: 2;
}

.image-container:hover .image-overlay {
    background: rgba(79, 140, 209, 0.2);
    backdrop-filter: blur(2px);
}

.image-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #4f8cd1;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Família Section */
.familia-section {
    padding: 5rem 0;
    background-color: #fff;
}

.familia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.familia-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fffaeb, #f5f5f5);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.familia-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
    perspective: 500px;
}

.member-photo.portrait {
    width: 300px;
    height: 400px;
}

.photo-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.photo-container.portrait {
    border-radius: 15px;
}

.photo-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.photo-container.portrait .photo-placeholder {
    border-radius: 15px;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.dad-photo {
    background: linear-gradient(135deg, #4f8cd1 0%, #7bb9ff 50%, #fffaeb 100%);
}

.mom-photo {
    background: linear-gradient(135deg, #fffaeb 0%, #7bb9ff 50%, #4f8cd1 100%);
}

.kids-photo {
    background: linear-gradient(135deg, #7bb9ff 0%, #fffaeb 50%, #fffaeb 100%);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.photo-container:hover .photo-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.familia-member h3 {
    color: #4f8cd1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.familia-member p {
    color: #666;
    line-height: 1.6;
}

.familia-description {
    text-align: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.familia-description p {
    font-size: 1.3rem;
    color: #4f8cd1;
    font-style: italic;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #fffaeb, rgba(123, 185, 255, 0.1));
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* Números Section */
.numeros-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fffaeb 0%, #7bb9ff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.numeros-section .social-cards-grid {
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f8cd1, #7bb9ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f8cd1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Clientes Section */
.clientes-section {
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
}

.clientes-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear 2s infinite;
    width: calc(200px * 16); /* Double the logos for seamless loop */
}

.carousel-track:hover {
    animation-play-state: paused;
}

.cliente-logo {
    width: 150px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
    padding: 15px;
}

.clientes-section .logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 20px;
}

.clientes-section .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    border-radius: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8)); /* Move by half the total width */
    }
}

.clientes-text {
    text-align: center;
    margin-top: 2rem;
}

.clientes-text p {
    font-size: 1.2rem;
    color: #4f8cd1;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Pacotes Section */
.pacotes-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fffaeb 0%, #7bb9ff 100%);
}

.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pacote-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pacote-card:hover {
    transform: translateY(-5px);
}

.pacote-card.featured {
    transform: scale(1.05);
    border: 3px solid #4f8cd1;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4f8cd1, #7bb9ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pacote-title {
    color: #4f8cd1;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pacote-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.pacote-price {
    font-size: 3rem;
    font-weight: 700;
    color: #7bb9ff;
    margin-bottom: 2rem;
}

.pacote-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pacote-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.pacote-features li i {
    color: #4f8cd1;
    font-size: 1.1rem;
}

.pacote-button {
    display: inline-block;
    background: linear-gradient(45deg, #4f8cd1, #7bb9ff);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.pacote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 140, 209, 0.3);
}

/* Contato Section */
.contato-section {
    padding: 5rem 0;
    background-color: #fff;
}

.contato-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}

.contato-info {
    text-align: left;
    max-width: 500px;
    flex: 1;
}

.contato-image {
    flex: 0.8;
    max-width: 350px;
}

.contact-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.contato-info h3 {
    color: #4f8cd1;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contato-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.contact-method i {
    color: #4f8cd1;
    font-size: 1.2rem;
    width: 20px;
}

.contact-method a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #4f8cd1;
    text-decoration: underline;
}

.caixa-postal-section {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 140, 209, 0.05) 0%, rgba(123, 185, 255, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid #4f8cd1;
}

.caixa-postal-section h4 {
    color: #4f8cd1;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.caixa-postal-section h4 i {
    font-size: 1.2rem;
}

.caixa-postal-intro {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 0.95rem;
}

.caixa-postal-info {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.caixa-postal-info p {
    margin: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.caixa-postal-info p strong {
    color: #333;
    font-weight: 600;
    min-width: 110px;
    display: inline-block;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f8cd1, #7bb9ff);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Social Feeds */
.social-feeds {
    background: linear-gradient(135deg, #fffaeb, #f5f5f5);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.social-profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.social-profile-card iframe {
    width: 100%;
    border: none;
    border-radius: 15px;
}

.tiktok-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
}

/* Form Styles */
.contato-form {
    background: linear-gradient(135deg, #fffaeb, #f5f5f5);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f8cd1;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #4f8cd1, #7bb9ff);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 140, 209, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4f8cd1, #7bb9ff);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    text-align: center;
    max-width: 400px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-links {
    text-align: center;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix background image on mobile */
    .hero {
        background-attachment: scroll;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        margin: 0.5rem 0;
        justify-content: center;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-center {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .image-gallery {
        width: 300px;
        height: 300px;
    }

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

    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pacote-card.featured {
        transform: none;
        margin-top: 2rem;
    }

    .stats-grid,
    .familia-grid,
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo.portrait {
        width: 250px;
        height: 320px;
    }
    
    .carousel-track {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .image-gallery {
        width: 250px;
        height: 250px;
    }

    .image-overlay i {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .member-photo.portrait {
        width: 200px;
        height: 260px;
    }

    .pacote-price {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 70px;
}

/* Apple-inspired advanced effects */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 250, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Glass morphism effect for cards */
.stat-card,
.pacote-card,
.cliente-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced button effects */
.pacote-button,
.submit-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #4f8cd1, #7bb9ff);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(79, 140, 209, 0.3);
}

.pacote-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pacote-button:hover::before,
.submit-button:hover::before {
    left: 100%;
}

.pacote-button:hover,
.submit-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(79, 140, 209, 0.4);
}

/* Loading shimmer effect */
.stat-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* Enhanced scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Apple-style focus states */
.nav-link:focus,
.cta-button:focus,
.pacote-button:focus,
.submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 140, 209, 0.3);
}

/* Enhanced mobile interactions */
@media (max-width: 768px) {
    .image-gallery {
        transform: scale(0.9);
    }
    
    .hero-content::before {
        display: none;
    }
    
    .stat-card,
    .pacote-card,
    .cliente-card {
        backdrop-filter: none;
        background: white;
    }
}
