.elementor-1407 .elementor-element.elementor-element-f178a29{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1407 .elementor-element.elementor-element-d8f5733{text-align:center;}.elementor-1407 .elementor-element.elementor-element-d8f5733 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:600;color:var( --e-global-color-5472a5d );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1407 .elementor-element.elementor-element-1e4983a{text-align:justify;}.elementor-1407 .elementor-element.elementor-element-3ab51af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-1407 .elementor-element.elementor-element-1e4983a{text-align:start;}}@media(min-width:768px){.elementor-1407 .elementor-element.elementor-element-f178a29{--width:90%;}}/* Start custom CSS for container, class: .elementor-element-f178a29 */.claht-countries {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.claht-title {
    font-family: 'Arial', sans-serif;
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.claht-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c);
    border-radius: 2px;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 35px;
    justify-items: center;
    align-items: start;
}

.flag-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 25px 15px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.flag-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.flag-card:hover::before {
    left: 100%;
}

.flag-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.flag-container {
    width: 140px;
    height: 100px;
    margin: 0 auto 20px;
    border: 3px solid #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.flag-card:hover .flag-container {
    border-color: #3498db;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.flag-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.flag-card:hover .flag-container img {
    transform: scale(1.1);
}

.country-name {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1em;
    display: block;
    margin-top: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.flag-card:hover .country-name {
    color: #3498db;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .flags-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .flags-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .flag-container {
        width: 110px;
        height: 80px;
    }
    
    .claht-title {
        font-size: 2.2em;
    }
    
    .flag-card {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .flags-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .flag-container {
        width: 90px;
        height: 60px;
    }
    
    .country-name {
        font-size: 0.9em;
    }
    
    .claht-title {
        font-size: 1.8em;
    }
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flag-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.flag-card:nth-child(2) { animation-delay: 0.1s; }
.flag-card:nth-child(3) { animation-delay: 0.2s; }
.flag-card:nth-child(4) { animation-delay: 0.3s; }
.flag-card:nth-child(5) { animation-delay: 0.4s; }
.flag-card:nth-child(6) { animation-delay: 0.5s; }
.flag-card:nth-child(7) { animation-delay: 0.6s; }
.flag-card:nth-child(8) { animation-delay: 0.7s; }
.flag-card:nth-child(9) { animation-delay: 0.8s; }
.flag-card:nth-child(10) { animation-delay: 0.9s; }
.flag-card:nth-child(11) { animation-delay: 1.0s; }
.flag-card:nth-child(12) { animation-delay: 1.1s; }
.flag-card:nth-child(13) { animation-delay: 1.2s; }
.flag-card:nth-child(14) { animation-delay: 1.3s; }
.flag-card:nth-child(15) { animation-delay: 1.4s; }
.flag-card:nth-child(16) { animation-delay: 1.5s; }
.flag-card:nth-child(17) { animation-delay: 1.6s; }/* End custom CSS */