/* 
   Estructura y Diseño - Landing Page Profesionales
   Paleta de Colores y Tipografía 
*/

:root {
    --primary-navy: #0F3A7D;
    --secondary-sky: #2E7FD1;
    --accent-mint: #10B981;
    --text-dark: #1A1A1A;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gray-muted: #6B7280;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    height: 80px;
    background-color: var(--white);
    transition: all 0.3s;
}

.navbar-brand .logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-sky));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-navy);
}

.btn-primary-custom {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-sky);
    border-color: var(--secondary-sky);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 58, 125, 0.2);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663274249447/HTcMri9FUydxT6CZ8zSjyB/hero-professional-bzJLjUxYeEnNZcKJqNDjDT.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

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

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-btn-outline:hover {
    background-color: white;
    color: var(--primary-navy);
}

.trust-badge {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Section Common */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.custom-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.custom-card:hover {
    border-color: var(--primary-navy);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-sky));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

/* Value Section */
.value-card .emoji-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.check-icon {
    color: var(--accent-mint);
    margin-right: 10px;
}

.text-mint {
    color: var(--accent-mint);
}

.text-navy {
    color: var(--primary-navy);
}

/* About Section */
.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-decorator {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--accent-mint);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
}

.value-mini-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.value-mini-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-mint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-navy);
}

.faq-category {
    font-size: 0.7rem;
    color: var(--accent-mint);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* Contact */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-color: var(--border-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 0.25rem rgba(15, 58, 125, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-mint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-sky));
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: white;
    padding: 80px 0 40px;
}

.footer-logo-box {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-weight: bold;
    margin-right: 10px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.text-blue-light {
    color: #BFDBFE;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    .navbar {
        height: auto;
        padding: 15px 0;
    }
}
