@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #ed9b15 0%, #f4a261 30%, #5093c3 70%, #4a8bc2 100%), url('plano de fundo.png');
    background-size: cover, cover;
    background-position: center, center;
    background-blend-mode: overlay;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 400px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav a:hover {
    color: #f0f0f0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-header {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-header:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-header i {
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: #f8fafc;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    margin-top: 60px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    margin: 1rem 0 1.5rem 0;
    text-align: left;
    padding-left: 1rem;
    border-left: 3px solid #27ae60;
    background: linear-gradient(90deg, rgba(39, 174, 96, 0.05) 0%, transparent 100%);
    padding: 0.8rem 0 0.8rem 1.2rem;
}

.highlight-text {
    color: #27ae60;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    letter-spacing: 0.3px;
}

.highlight-subtext {
    color: #5a6c7d;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-info {
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
}

.info-item strong {
    color: #1e3a8a;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary::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.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.4), 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary::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.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4), 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* Mission Section */
.mission {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.mission-logo img {
    height: 150px;
    width: auto;
    max-width: 350px;
    transition: all 0.3s ease;
}

.mission-logo:hover img {
    transform: scale(1.05);
}

.mission h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mission p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mission p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #475569;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 25px 50px rgba(30, 58, 138, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    max-width: 350px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 70px rgba(30, 58, 138, 0.12),
        0 20px 45px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-card:hover::after {
    opacity: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(30, 58, 138, 0.15));
    transition: all 0.3s ease;
    margin-top: 30px;
}

.hero-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(30, 58, 138, 0.2));
}
}

/* Services Section */
.services {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding: 0 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.whatsapp-section {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 20px;
}

.whatsapp-section h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #25d366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20c55e 50%, #16a34a 100%);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp::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.6s;
}

.btn-whatsapp::after {
    content: "💬";
    font-size: 20px;
    margin-right: 5px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0f766e 50%, #0d9488 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4), 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:active {
     transform: translateY(-2px) scale(1.02);
     transition: all 0.1s ease;
 }

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 50%, #3b82f6 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.testimonial-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 3px;
    transition: all 0.3s ease;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: #3b82f6;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author .name {
    font-weight: 700;
    font-size: 16px;
    color: #1e3a8a;
}

.testimonial-author .service {
    font-size: 14px;
    color: #6b7280;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .testimonial-photo {
        align-self: center;
        margin-bottom: 10px;
    }
    
    .testimonials h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    height: 350px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 30%, #8b5cf6 60%, #fbbf24 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2), 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card:hover::before {
    opacity: 1;
    height: 8px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3), 0 4px 12px rgba(139, 92, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #8b5cf6, #fbbf24);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 16px 32px rgba(30, 58, 138, 0.45), 0 8px 16px rgba(139, 92, 246, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
    flex-grow: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
    flex-grow: 1;
}

.service-card li {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 12px;
}

.btn-service-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 140px;
    align-self: center;
}

.btn-service-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.btn-service-whatsapp i {
    font-size: 16px;
    color: white;
}







/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.about-text p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    font-size: 20px;
    color: #1e3a8a;
    width: 24px;
}

.feature span {
    color: #475569;
    font-weight: 500;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    padding: 12px 24px;
    border: 2px solid #1e3a8a;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-1px);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1e3a8a;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.about-card i {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.about-card p {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Important Notice Section */
.important-notice {
    padding: 40px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    position: relative;
    overflow: hidden;
}

.notice-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.notice-content i {
    font-size: 32px;
    color: #fef2f2;
    animation: pulse 2s infinite;
}

.notice-content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .notice-content i {
        font-size: 24px;
    }
    
    .notice-content p {
        font-size: 16px;
        text-align: center;
    }
}

/* Seção de Contato */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 50px;
}

.contact h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.info-alert {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 auto 30px;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.info-alert i {
    color: #1e40af;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-alert p {
    color: #1e40af;
    font-weight: 500;
    margin: 0;
    font-size: 1.1rem;
}

.seals-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.seals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seal-image {
    max-height: 80px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    mix-blend-mode: multiply;
    opacity: 0.9;
}



.seal-item:hover .seal-image {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.step-item:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-content i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,123,255,0.2));
}

.step-content span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary-cta, .btn-secondary-cta, .btn-tertiary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    width: 320px;
    height: 60px;
    justify-content: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-color: rgba(30, 58, 138, 0.2);
}

.btn-secondary-cta {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    border-color: rgba(30, 64, 175, 0.2);
}

.btn-tertiary-cta {
    background: linear-gradient(135deg, #1d4ed8 0%, #3730a3 100%);
    border-color: rgba(29, 78, 216, 0.2);
}

.btn-primary-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    border-color: rgba(30, 58, 138, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-color: rgba(30, 64, 175, 0.4);
    color: white;
    text-decoration: none;
}

.btn-tertiary-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3730a3 0%, #1d4ed8 100%);
    border-color: rgba(29, 78, 216, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary-cta:active, .btn-secondary-cta:active, .btn-tertiary-cta:active {
    transform: translateY(-1px);
}

.btn-shine {
    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;
}

.btn-primary-cta:hover .btn-shine,
.btn-secondary-cta:hover .btn-shine,
.btn-tertiary-cta:hover .btn-shine {
    left: 100%;
}

.btn-primary-cta i, .btn-secondary-cta i, .btn-tertiary-cta i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover i, .btn-secondary-cta:hover i, .btn-tertiary-cta:hover i {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .step-item {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    
    .step-content i {
        font-size: 2rem;
    }
    
    .step-content span {
        font-size: 0.9rem;
    }
    
    .btn-primary-cta, .btn-secondary-cta, .btn-tertiary-cta {
        width: 100%;
        max-width: 300px;
        height: 56px;
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    .btn-primary-cta i, .btn-secondary-cta i, .btn-tertiary-cta i {
        font-size: 16px;
    }
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* Social Media Section */
.social-media {
    background: linear-gradient(135deg, #ed9b15 0%, #f4a261 30%, #5093c3 70%, #4a8bc2 100%);
    padding: 3rem 0;
    text-align: center;
}

.social-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 100px;
}

.social-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #3b5998, #8b9dc3);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #2d4373, #3b5998);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.email {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.social-icon.email:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

@media (max-width: 768px) {
    .social-icons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-icon {
        padding: 12px 16px;
        font-size: 1.2rem;
        min-width: 80px;
    }
    
    .social-icon span {
         font-size: 0.8rem;
     }
 }

/* Contact Info Text */
.contact-info-text {
    margin-top: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.contact-info-text strong {
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-info-text {
        margin-top: 1.5rem;
    }
    
    .contact-info-text p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-direction: row;
        gap: 0;
    }
    
    .logo img {
        height: 60px;
        max-width: 250px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-bottom: 3px solid #1e3a8a;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .nav a:hover {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
        color: #1e3a8a;
        transform: translateX(10px);
    }
    
    .header-cta {
        order: 3;
    }
    
    .btn-header {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .btn-header i {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0;
        height: auto;
        min-height: 220px;
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .service-card li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    

    
    .mission-logo img {
        height: 120px;
        max-width: 280px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 110px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        text-align: center;
    }
    
    .service-card {
        padding: 20px 15px;
        min-height: 140px;
        max-width: 100%;
    }
    
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 0;
    }
    
    
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
}