/** ===== RESET ===== **/
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Hind', sans-serif;
    font-weight: 400;
    font-size: 1rem;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.section-eyebrow {
    font-size: 0.9rem;
    font-weight: 550;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c07959;
}
/** ===== HEADER / MENU ===== **/
.site-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 4%;
    background-color: rgba(255, 255, 255, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.name {
    margin: 0;
    font-family: 'Fraunces';
    font-size: 1.3rem;
    font-weight: 500;
    color: #235161;
}
.occupation {
    margin: 0.25rem 0 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #c07959;
}
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-item {
    position: relative;
}
.nav-item > a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #235161;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.nav-item > a:hover {
    color: #c07959;
}
.dropdown {
    position: relative;
}
.dropdown-toggle span {
    display: inline-block;
    margin-left: 3px;
    font-size: 0.75em;
    transition: transform 0.2s ease;
}
.dropdown:hover .dropdown-toggle span {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    min-width: 240px;
    padding: 10px 0;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    white-space: nowrap;
    font-size: 0.95rem;
    color: #235161;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover {
    background-color: #cd744038;
    color: #c07959;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.contact-link {
    display: block;
    padding: 10px 15px;
    font-weight: 500;
    color: #235161;
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: #c07959;
}
.menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #235161;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.menu-cta:hover {
    background-color: #173843;
    transform: translateY(-1px);
}
.menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: 8px;
}
.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #235161;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
/** ===== MAIN / HERO ===== **/
.hero {
    background-image: url(/assets/main_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 115vh;
    padding: 5rem 10rem;
}
.hero-container {
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    padding-bottom: 0;
}
.hero-banner h1 {
    font-family: 'Fraunces';
    color: #fff;
    font-weight: 300;
    font-size: 5rem;
    margin: 0;
    padding: 3.5rem 0 0.9rem 0;
    line-height: 1;       
}
.hero-banner .italic {
    font-style: italic;
}
.hero-description {
    color: #fff;
    font-size: 1.2rem;
    font-weight: lighter;
    padding-right: 8rem;
    padding-bottom: 1.2rem;
    line-height: 1.6;
}
.hero-cta-container {
    display: flex;
    gap: 1.5rem;
    color: #fff;
    font-weight: 0.9rem;
    padding: 0;
    margin: 0;
}
.hero-cta-primary,
.hero-cta-secondary {
    padding: 18px 40px;
    border-radius: 35px;
    transition: all 0.3s ease;
}
.hero-cta-primary {
    background-color: #c07959;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 520;
}
.hero-cta-primary:hover {
    background-color: #784a35;
}
.hero-cta-secondary {
    background-color: transparent;
    border: 1px solid #fff;
    font-weight: 520;
    font-size: 0.9rem;
}
.hero-cta-secondary:hover {
    background-color: #fff;
    color: #235161;
}
.hero-image img {
    width: auto;
    height: 600px;
    border-radius: 35px;
}
.stats-container {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}
.hero-stat .stats {
    font-family: 'Fraunces';
    color: #ffffff9a;
    font-size: 2.3rem;
    font-weight: 350;
}
.hero-stat p {
    font-size: 0.8rem;
    color: #b0aaaae1;
    margin: 0;
    padding: 0;
}
.reviews-card {
    position: absolute;
    top: 31%;
    left: 54%;
    z-index: 2;
    width: 150px;
    padding: 17px 20px;
    background-color: #f3e7d5;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.stars {
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #17536a;
}
.reviews-text {
    margin-top: 3px;
    font-size: 0.7rem;
    line-height: 1.2;
    color: #24343a;
}
/** ===== ABOUT SECTION ===== **/
.about-section {
    background-color: #f7f6f2;
    padding: 5.5rem 10rem;
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    align-items: center;
}
.about-image {
    position: relative;
    flex-shrink: 0;
}
.about-image img {
    position: relative;
    width: 450px;
    height: auto;
    border-radius: 35px;
    z-index: 5;
}
.about-image-frame {
    position: absolute;
    z-index: 0;
    background-color: #e8ddca;
    width: 450px;
    height: 600px;
    border-radius: 35px;
    top: 20px;
    left: -20px;
}
.about-description h2 {
    font-family: 'Fraunces';
    color: #235161;
    font-weight: 350;
    font-size: 3rem;
    padding: 1rem 0 0.5rem 0;
    margin: 0;
}
.about-description p {
    color: #24343a;
    font-size: 1.05rem;
}
.about-paragraph {
    padding-bottom: 1.5rem;
}
.third-cta {
    background-color: #235161;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 45px;
    transition: all 0.3s ease;
}
.third-cta:hover {
    background-color: #173843;
}
/** ===== SERVICES SECTION ===== **/
.services {
    background-color: #e8ddca;
    padding: 5rem 10rem;
}
.section-title {
    font-family: 'Fraunces';
    color: #235161;
    font-weight: 350;
    font-size: 2.4rem;
    margin: 0;
    padding: 0.5rem 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 200px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    background-color: #173843;
    transform: translateY(-5px);
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.10);
    cursor: pointer;
}
.service-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
    fill: #c07959;
    stroke: #c07959;
    transition: fill 0.3s ease, stroke 0.3s ease;
}
.service-card:hover .service-icon {
    fill: #ffffff;
    stroke: #ffffff;
}
.service-title {
    margin: 0 0 1rem;
    font-family: 'Fraunces';
    font-size: 1.08rem;
    font-weight: 430;
    line-height: 1.1;
    color: #234b63;
    transition: color 0.3s ease;
}
.service-card:hover .service-title {
    color: #ffffff;
}
.service-description {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #24343a;
    transition: color 0.3s ease;
}
.service-card:hover .service-description {
    color: #ffffff;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c07959;
    transition: color 0.3s ease, gap 0.3s ease;
}
.service-link:hover {
    gap: 10px;
}
.service-card:hover .service-link {
    color: #ffffff;
}
/** ===== PROCESS ===== **/
.process-section {
    padding: 6rem 10rem;
    background-color: #f7f6f2;
}
.process-header {
    text-align: center;
    margin-bottom: 2rem;
}
.process-section .section-eyebrow {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #c07959;
}
.process-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.9rem;
    font-weight: 500;
    line-height: 1;
    color: #234b63;
}
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}
.process-step {
    position: relative;
    min-height: 120px;
    padding: 0 2rem;
    border-left: 1px solid rgba(35, 81, 97, 0.15);
}
.process-step:first-child {
    border-left: none;
}
.process-number {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: rgba(58, 58, 58, 0.13);
}
.process-step-title {
    margin: 0 0 0.7rem;
    font-family: 'Fraunces';
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: #1e515f;
}
.process-description {
    max-width: 250px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #3a3a3a;
}
/** ===== APPROACH ===== **/
.approach-section {
    padding: 6rem 10rem;
    background-color: #1f4e5e;    
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    align-items: center;
}
.approach-intro {
    max-width: 550px;
    margin-bottom: 3.5rem;
}
.section-eyebrow {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #c07959;
}
.approach-title {
    margin: 0;
    font-family: 'Fraunces';
    font-size: 2.9rem;
    font-weight: 350;
    line-height: 1.1;
    color: #fff;
    padding-top: 1rem;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.approach-card {
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 2rem 2.5rem;
    background-color: #2c5767;
    border-radius: 15px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease,  background-color 0.3s ease;
}
.approach-card:hover {
    transform: translateY(-4px);
    background-color: #315d6d;
}
.approach-icon {
    width: 25px;
    height: 25px;
    margin-bottom: 1.1rem;
    padding: 0;
    flex-shrink: 0;
}
.approach-card-title {
    margin: 0 0 0.6rem;
    font-family: 'Fraunces';
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}
.approach-card-text {
    max-width: 500px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d3d9da;
}
/** ===== TESTIMONIALS ===== **/
#testimonials {
    background-color: #f7f6f2;
    padding: 6rem 10rem;
    overflow: hidden;
}
#testimonials .section-header {
    text-align: center;
}
.testimonials-slider {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 2.5rem;
}
.testimonials-track {
    display: flex;
    transition: transform 0.7s ease;
}
.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    background-color: #fff;
    padding: 3rem 4rem;
    border-radius: 35px;
    text-align: center;
}
.testimonial-quote-icon {
    width: 45px;
    height: auto;
    margin-bottom: 2rem;
    fill: #f7f6f2;
}
.testimonial-text {
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.5;
}
.testimonial-author {
    margin: 0;
}
.testimonial-name {
    color: #234b63;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.testimonial-context {
    color: #c07959;
    font-size: 0.8rem;
    margin: 0;
}
.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 2.5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #234b63;
    opacity: 0.35;
    cursor: pointer;
    transition:
    width 0.35s ease,
    opacity 0.35s ease,
    border-radius 0.35s ease;
}
.testimonial-dot:hover {
    opacity: 0.7;
}
.testimonial-dot.active {
    width: 32px;
    height: 8px;
    border-radius: 10px;
    opacity: 1;
}
.testimonial-dot:focus-visible {
    outline: 2px solid #c07959;
    outline-offset: 4px;
}
/** ===== BLOG ===== **/
#blog-section {
    background-color: #e8ddca;
    padding: 5rem 10rem;
}
#blog-section .section-header {
    text-align: center;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
}
.blog-card {
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}
.blog-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.06);
}
.blog-content {
    padding: 2rem;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.blog-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: #c07959;
    font-weight: 700;
}
.blog-separator {
    color: #c07959;
    font-size: 0.8rem;
}
.blog-date {
    font-size: 0.7rem;
    color: #3a3a3a;
}
.blog-card-title {
    color: #17536a;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    padding: 1rem 0;
    margin: 0;
}
.blog-read-more {
    display: inline-block;
    color: #c07959;
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}
.blog-card:hover .blog-read-more {
    color: #774630;
}
.blog-card-link:focus-visible {
    outline: 2px solid #c07959;
    outline-offset: 4px;
}
/** ===== FINAL CALL TO ACTION ===== **/
#call-to-action {
    background-color: #c07959;
    padding: 6rem 10rem;
    text-align: center;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-eyebrow {
    display: block;
    margin: 0;
    color: #e5b9b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}
.cta-title {
    margin: 0;
    padding: 1.5rem 0;
    color: #fff;
    font-family: 'Fraunces';
    font-size: 3.5rem;
    font-weight: 350;
    line-height: 1;
    padding: 1.5rem 6rem 3rem;
}
.cta-description {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding-top: 2rem;
}
.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cta-primary {
    border: 1px solid #fff;
    background-color: #fff;
    color: #c07959;
}
.cta-primary:hover {
    border-color: #a76e53;
    background-color: #a76e53;
    color: #fff;
    transform: translateY(-2px);
}
.cta-secondary {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.cta-secondary:hover {
    background-color: #fff;
    color: #c07959;
    transform: translateY(-2px);
}
/** ===== FOOTER ===== **/
.site-footer {
    background-color: #1f4e5e;
    padding: 4rem 10rem 1.5rem;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
}
.footer-brand {
    max-width: 340px;
}
.footer-name {
    margin: 0;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 500;
}
.footer-profession {
    margin: 0;
    padding-top: 0.4rem;
    color: #c07959;
    font-size: 0.8rem;
    font-weight: 600;
}
.footer-description {
    margin: 0;
    padding-top: 1.2rem;
    color: #bac2c3;
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-heading {
    margin: 0;
    padding-bottom: 1.2rem;
    color: #c07959;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links a {
    display: inline-block;
    padding: 0;
    color: #bac2c3;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease,  transform 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
    padding-top: 1.5rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.social-link img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.social-link:hover {
    background-color: #c07959;
    border-color: #c07959;
    transform: translateY(-2px);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-contact-text {
    margin: 0;
    padding-bottom: 0.7rem;
    color: #bac2c3;
    font-size: 0.9rem;
}
.footer-contact-link {
    display: block;
    margin: 0;
    padding-bottom: 0.7rem;
    color: #bac2c3;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-link:hover {
    color: #fff;
}
.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 9px 30px;
    border: 1px solid #fff;
    border-radius: 25px;
    background-color: #fff;
    color: #1f4e5e;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer-cta-button:hover {
    background-color: #2c5767;
    border-color: #2c5767;
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-copyright {
    margin: 0;
    color: #bac2c3;
    font-size: 0.8rem;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
}
.footer-legal a {
    color: #bac2c3;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: #fff;
}
/** ===== WHATSAPP ===== **/
#whatsapp-btn-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}
#whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.whatsapp-icon {
    width: 40px;
    height: 40px;
}
#whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
#whatsapp-link {
    animation: pulse 2s infinite;
}
/** ===== CORRECCIONES CARDS ===== **/
.process-step {
    padding: 0 1.5rem;
}
.approach-card {
    min-height: auto;
    padding: 1.8rem 2rem;
}
/** ===== ANIMACIONES ===== **/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-banner h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}
.hero-description {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-cta-container {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.reviews-card {
    animation: float 4s ease-in-out infinite;
}
.hero-cta-primary,
.hero-cta-secondary,
.third-cta,
.menu-cta,
.cta-primary,
.cta-secondary,
.footer-cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero-cta-primary::after,
.third-cta::after,
.menu-cta::after,
.cta-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
    z-index: -1;
}
.hero-cta-primary:hover::after,
.third-cta:hover::after,
.menu-cta:hover::after,
.cta-primary:hover::after {
    left: 100%;
}
/* Elevación de Cards */
.service-card,
.approach-card,
.blog-card {
    will-change: transform, box-shadow;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.35s ease;
}
/** ===== RESPONSIVE ===== **/

/** ===== LAPTOP MEDIANO ===== **/
@media (max-width: 1200px) {
    .hero,
    .about-section,
    .services,
    .process-section,
    .approach-section,
    #testimonials,
    #blog-section,
    #call-to-action,
    .site-footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero {
        height: auto;
        min-height: 100vh;
    }
    .hero-banner h1 {
        font-size: 3.8rem;
    }
    .hero-description {
        padding-right: 2rem;
    }
    .hero-image img {
        height: 500px;
    }
    .reviews-card {
        top: 35%;
        left: 48%;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}
/** ===== TABLET ===== **/
@media (max-width: 992px) {
    .site-header {
        padding: 0.8rem 5%;
    }
    .menu-button {
        display: flex;
    }
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 5%;
        gap: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }
    .menu-toggle:checked ~ .main-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-item > a {
        padding: 12px 0;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: transparent;
    }
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }
    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 0.5rem;
    }
    .contact-link,
    .menu-cta {
        text-align: center;
        width: 100%;
    }
    .hero-container {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }
    .hero-banner h1 {
        padding-top: 1rem;
    }
    .hero-description {
        padding-right: 0;
    }
    .hero-cta-container,
    .stats-container {
        justify-content: flex-start;
    }
    .hero-image {
        display: flex;
        justify-content: center;
        width: 100%;
        position: relative;
    }
    .hero-image img {
        width: 100%;
        max-width: 480px;
        height: auto;
    }
    .reviews-card {
        top: 20px;
        left: 2%;
        transform: translateX(-50%);
    }
    .about-section {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
    }
    .about-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .about-image img,
    .about-image-frame {
        width: 100%;
        max-width: 420px;
    }
    .about-image-frame {
        visibility: hidden;
        left: auto;
        top: 15px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .process-step {
        border-left: none;
        border-top: 1px solid rgba(35, 81, 97, 0.15);
        padding: 1.5rem 0 0 0;
    }
    .process-step:first-child {
        border-top: none;
        padding-top: 0;
    }
    .approach-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .approach-intro {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    .approach-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    .approach-card {
        padding: 1.5rem;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/** ===== MOBILE ===== **/
@media (max-width: 600px) {
    .hero,
    .about-section,
    .services,
    .process-section,
    .approach-section,
    #testimonials,
    #blog-section,
    #call-to-action,
    .site-footer {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .hero-banner h1 {
        font-size: 3rem;
    }
    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
    }
    .stats-container {
        flex-direction: flex;
        gap: 1rem;
        padding-bottom: 0;
    }
    .hero-stat .stats {
        font-size: 2rem;
    }
    .hero-stat p {
        font-size: 0.7rem;
    }
    .services-grid,
    .process-list,
    .approach-grid,
    .blog-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    .process-step {
        padding-top: 1.2rem;
    }
    .process-description {
        max-width: 100%;
    }
    .approach-card {
        padding: 1.4rem 1.2rem;
    }
    .approach-card-text {
        max-width: 100%;
    }
    #testimonials .section-header,
    .process-header,
    #blog-section .section-header,
    #call-to-action {
        text-align: center;
    }
    .cta-title {
        font-size: 2.2rem;
        padding-left: 0;
        padding-right: 0;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    .testimonial-card {
        padding: 2rem 1.2rem;
    }
    .testimonial-text {
        font-size: 1.2rem;
        padding-bottom: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}