@charset "UTF-8";

/* Otimização de fontes - Fallback system fonts para evitar FOIT */
:root {
  --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Font-display swap para Poppins */
@font-face {
  font-family: 'Poppins';
  font-display: swap;
  src: local('Poppins');
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da paleta - Dark Theme */
    --primary-color: #C9A96E;
    --secondary-color: #FFFFFF;
    --light-color: #2A2A2A;
--logo-gold:#E6C794;
--gradient-gold:linear-gradient(135deg,#E6C794,#F4D03F,#D4A574);
--white:#1A1A1A;
--gray-light:#2A2A2A;
--gray-medium:#B0B0B0;
--shadow:rgba(255,255,255,0.1);
--font-primary:'Poppins',sans-serif;
--font-weight-light:300;
--font-weight-regular:400;
--font-weight-medium:500;
--font-weight-semibold:600;
--font-weight-bold:700;
--spacing-xs:0.5rem;
--spacing-sm:1rem;
--spacing-md:2rem;
--spacing-lg:3rem;
--spacing-xl:4rem;
--transition-fast:0.3s ease;
--transition-medium:0.5s ease;
}

html{scroll-behavior:smooth}
body{font-family:var(--font-primary);color:var(--secondary-color);line-height:1.6;font-weight:var(--font-weight-regular);background-color:var(--white)}
.container{max-width:1200px;margin:0 auto;padding:0 var(--spacing-sm)}
.header{position:fixed;top:0;width:100%;background:rgba(26,26,26,0.95);backdrop-filter:blur(10px);z-index:1000;box-shadow:0 2px 20px rgba(173,21,39,0.4);transition:var(--transition-fast);border-bottom:1px solid rgba(173,21,39,0.3)}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%),
        url('../images/discussao-na-aula-de-leitura.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(230, 199, 148, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(230, 199, 148, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.hero-text-center {
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 25%, #F4E7A1 50%, #E6D690 75%, #C9A96E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 15px rgba(201, 169, 110, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 1);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-sm);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #B8860B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a085 50%, #0d7377 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 25%, #F77737 50%, #FCAF45 75%, #833AB4 100%);
    color: white;
    border: none;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #9147C4 0%, #FF2D2D 25%, #FF8747 50%, #FFBF55 75%, #9147C4 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(131, 58, 180, 0.4);
}





/* Informações Principais */
.info-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #111111 0%, 
        #1a1a1a 25%, 
        #222222 50%, 
        #1a1a1a 75%, 
        #111111 100%
    );
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(173, 21, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.info-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(201, 169, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(201, 169, 110, 0.3));
}

.info-card h2,
.info-card h3 {
    font-size: 1.6rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #0d0d0d 0%, 
        #111111 30%, 
        #1a1a1a 70%, 
        #0d0d0d 100%
    );
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(173, 21, 39, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    color: var(--gold);
    line-height: 1.2;
}

.about-text p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* Instagram Card */
.instagram-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.instagram-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.instagram-info {
    text-align: left;
    flex: 1;
}

.instagram-info h3 {
    color: var(--gold);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.instagram-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.instagram-content {
    margin-bottom: var(--spacing-lg);
}

.instagram-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
    text-decoration: none;
    color: white;
}

.instagram-btn i {
    font-size: 1.1rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(173, 21, 39, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition-medium);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

/* Church Section */
.church-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #111111 0%, 
        #1e1e1e 25%, 
        #0a0a0a 50%, 
        #1e1e1e 75%, 
        #111111 100%
    );
    position: relative;
    overflow: hidden;
}

.church-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(173, 21, 39, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.church-content {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.church-main-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.church-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.08) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.03) 100%
    );
    z-index: 0;
}

.church-intro, .church-description, .church-mission {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-md);
}

.church-intro p {
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.church-description p, .church-mission p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    text-align: justify;
}

.church-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(201, 169, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    box-shadow: 
        0 10px 25px rgba(201, 169, 110, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.value-icon i {
    font-size: 2.2rem;
    color: rgba(30, 30, 45, 0.9);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.value-card h3,
.value-card h4 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}



/* Slogan Section */
.slogan-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #0f0f0f 0%, 
        #1c1c1c 25%, 
        #111111 50%, 
        #1c1c1c 75%, 
        #0f0f0f 100%
    );
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(173, 21, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.slogan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.slogan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-lg);
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.slogan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slogan-card.educar {
    border-color: rgba(212, 175, 55, 0.3);
}

.slogan-card.enraizar {
    border-color: rgba(212, 175, 55, 0.3);
}

.slogan-card.frutificar {
    border-color: rgba(212, 175, 55, 0.3);
}

.slogan-card:hover::before {
    opacity: 1;
}

.slogan-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(201, 169, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.slogan-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    box-shadow: 
        0 10px 30px rgba(201, 169, 110, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.slogan-icon i {
    font-size: 2.8rem;
    color: rgba(30, 30, 45, 0.9);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.slogan-card h3 {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.slogan-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
    text-align: justify;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slogan-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.slogan-card li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slogan-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    filter: drop-shadow(0 2px 4px rgba(201, 169, 110, 0.4));
}

/* Methodology Section */
.methodology-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #141414 0%, 
        #111111 25%, 
        #1a1a1a 50%, 
        #111111 75%, 
        #141414 100%
    );
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(173, 21, 39, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.methodology-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-intro {
    position: relative;
    z-index: 1;
}

.methodology-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.methodology-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    z-index: 1;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(201, 169, 110, 0.8) 0%, 
        rgba(230, 214, 144, 0.9) 50%, 
        rgba(201, 169, 110, 0.8) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: var(--spacing-md);
}

.timeline-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 15px 35px rgba(201, 169, 110, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        0 0 0 6px rgba(17, 17, 17, 1),
        0 0 0 12px rgba(201, 169, 110, 0.2);
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 3rem;
    color: rgba(30, 30, 45, 0.9);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.timeline-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-lg);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timeline-card:hover {
    transform: translateY(-10px) translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(201, 169, 110, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-card h4 {
    font-size: 1.6rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1.05rem;
}

.methodology-details h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    justify-content: center;
}

.detail-item {
    background: var(--light-color);
    padding: var(--spacing-md);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(173, 21, 39, 0.2);
}

.detail-item h4,
.detail-item h5 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.detail-item p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Differentials Section */
.differentials-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #111111 0%, 
        #1f1f1f 25%, 
        #0e0e0e 50%, 
        #1f1f1f 75%, 
        #111111 100%
    );
    position: relative;
    overflow: hidden;
}

.differentials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(173, 21, 39, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.differential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.card-icon i {
    font-size: 1.8rem;
    color: rgba(30, 30, 45, 0.9);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.differential-card h3,
.differential-card h4 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.differential-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        #111111 0%, 
        #1d1d1d 25%, 
        #0c0c0c 50%, 
        #1d1d1d 75%, 
        #111111 100%
    );
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 25%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 65% 75%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray-medium);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links h4 {
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-color);
    padding: var(--spacing-sm);
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition-fast);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-map h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    margin-bottom: var(--spacing-sm);
    width: 100%;
    max-width: 100%;
}

.map-container iframe {
    width: 100%;
    max-width: 100%;
    display: block;
}

.map-description {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.map-description i {
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: var(--spacing-xl);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(201, 169, 110, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 3s ease-in-out infinite;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 110, 0.15) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.08) 100%
    );
    z-index: 0;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.btn-whatsapp-cta::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;
}

.btn-whatsapp-cta:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a085 50%, #0d7377 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(37, 211, 102, 0.6),
        0 0 50px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta:hover::before {
    left: 100%;
}

.btn-instagram-cta {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 25%, #F77737 50%, #FCAF45 75%, #833AB4 100%);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(131, 58, 180, 0.4),
        0 0 20px rgba(131, 58, 180, 0.2);
    animation: instagramPulse 2.5s ease-in-out infinite;
}

.btn-instagram-cta::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;
}

.btn-instagram-cta:hover {
    background: linear-gradient(135deg, #9147C4 0%, #FF2D2D 25%, #FF8747 50%, #FFBF55 75%, #9147C4 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(131, 58, 180, 0.6),
        0 0 50px rgba(253, 29, 29, 0.4);
}

.btn-instagram-cta:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #111111 25%, 
        #0f0f0f 50%, 
        #111111 75%, 
        #0a0a0a 100%
    );
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-sm);
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-semibold);
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--light-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
}

.footer .social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer .social-links a:hover {
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 100%);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--spacing-sm);
    text-align: center;
    color: #cccccc;
}

.footer-bottom p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

.email-wrap {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.email-wrap a {
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.agency-link {
    color: var(--secondary-color) !important;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(135deg, #C9A96E 0%, #E6D690 50%, #F4E7A1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.agency-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.5) saturate(1.2);
    text-shadow: 0 0 10px rgba(201, 169, 110, 0.6),
                 0 0 20px rgba(201, 169, 110, 0.4),
                 0 0 30px rgba(201, 169, 110, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #22c55e;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}



@keyframes titleGlow {
    0% {
        text-shadow: 
            0 4px 15px rgba(201, 169, 110, 0.6),
            0 0 20px rgba(201, 169, 110, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 4px 30px rgba(230, 214, 144, 0.8),
            0 0 50px rgba(244, 231, 161, 0.5),
            0 0 80px rgba(201, 169, 110, 0.3);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 
            0 4px 25px rgba(201, 169, 110, 0.7),
            0 0 40px rgba(230, 214, 144, 0.4);
        transform: scale(1);
    }
}

@keyframes backgroundPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    33% {
        opacity: 0.8;
        transform: scale(1.02);
    }
    66% {
        opacity: 0.6;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.01);
    }
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ctaPulse {
    0% {
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.4),
            0 0 50px rgba(201, 169, 110, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 30px 70px rgba(0, 0, 0, 0.5),
            0 0 70px rgba(201, 169, 110, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.4),
            0 0 50px rgba(201, 169, 110, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 
            0 10px 25px rgba(37, 211, 102, 0.4),
            0 0 20px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 35px rgba(37, 211, 102, 0.6),
            0 0 40px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 
            0 10px 25px rgba(37, 211, 102, 0.4),
            0 0 20px rgba(37, 211, 102, 0.2);
    }
}

@keyframes instagramPulse {
    0% {
        box-shadow: 
            0 10px 25px rgba(131, 58, 180, 0.4),
            0 0 20px rgba(131, 58, 180, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 35px rgba(253, 29, 29, 0.5),
            0 0 40px rgba(247, 119, 55, 0.3);
    }
    100% {
        box-shadow: 
            0 10px 25px rgba(131, 58, 180, 0.4),
            0 0 20px rgba(131, 58, 180, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
        .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: var(--spacing-md) 0;
        z-index: 9999;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu li {
        list-style: none;
        margin: var(--spacing-md) 0;
    }
    
    .nav-menu li {
        margin: var(--spacing-xs) 0;
    }
    
    .nav-menu a {
        color: var(--text-light) !important;
        font-size: 1.1rem !important;
        font-weight: var(--font-weight-medium) !important;
        text-decoration: none !important;
        padding: var(--spacing-sm) 0 !important;
        transition: all 0.3s ease;
        display: block;
        position: relative;
    }
    
    .nav-menu a:hover {
        color: var(--secondary-color) !important;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-menu a:hover::after {
        width: 30px;
    }
    
    .nav-menu .btn-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%) !important;
        color: white !important;
        font-size: 0.9rem !important;
        padding: var(--spacing-xs) var(--spacing-sm) !important;
        border-radius: 25px;
        margin: var(--spacing-sm) auto !important;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        width: auto;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        font-weight: var(--font-weight-semibold);
    }
    
    .nav-menu .btn-whatsapp:hover {
        background: linear-gradient(135deg, #22c55e 0%, #16a085 50%, #0d7377 100%) !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    
    .nav-menu .btn-whatsapp::after {
        display: none;
    }
    


    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }



    .about-content,
    .church-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .instagram-card {
        margin-top: var(--spacing-lg);
    }
    
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .instagram-info {
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .slogan-grid,
    .methodology-grid,
    .details-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .church-values {
        flex-direction: column;
    }

    .value-item {
        min-width: auto;
    }

    /* Timeline Responsividade */
    .methodology-timeline::before {
        left: 30px;
    }

    .timeline-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .timeline-icon {
        width: 80px;
        height: 80px;
        box-shadow: 
            0 10px 25px rgba(201, 169, 110, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }

    .timeline-icon i {
        font-size: 2.2rem;
    }

    .timeline-card {
        max-width: 100%;
    }

    .timeline-card:hover {
        transform: translateY(-10px);
    }

    /* Correção do mapa no mobile */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-map {
        margin-top: var(--spacing-md);
        width: 100%;
        max-width: 100%;
    }
    
    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .map-container iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px !important;
        border: none;
        display: block;
    }
    
    /* Correção do email no mobile */
    .contact-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
    }
    
    .contact-item p {
        word-break: break-all;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .contact-item a {
        word-break: break-all;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }

    .hero {
        background-position: 75% center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }



    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 80px;
        right: 15px;
    }

    .social-icons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        padding-bottom: 60px;
    }
    
    .footer-bottom p {
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    /* Correções extras para telas muito pequenas */
    .contact-map {
        padding: 0;
        margin: var(--spacing-sm) 0;
    }
    
    .map-container {
        border-radius: 10px;
    }
    
    .map-container iframe {
        height: 200px !important;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 0.9rem;
        word-break: break-all;
        overflow-wrap: anywhere;
        white-space: normal;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-primary {
    background: var(--primary-color);
}

.bg-light {
    background: var(--gray-light);
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }

/* AOS Animation Support */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Ícones SVG inline otimizados */
.icon-whatsapp,
.icon-instagram,
.icon-info {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.whatsapp-float .icon-whatsapp {
    margin: 0;
    width: 28px;
    height: 28px;
}