/* CSS Reset & Variables */
:root {
    --primary-color: #4DA3D4;
    --primary-dark: #3A8BB8;
    --bg-dark: #080B10;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #A0AAB4;
    --accent: #FF3366;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 15, 25, 0.7);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    /* Larger as requested */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
    /* Slightly larger when scrolled as well */
}

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

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Header Booking Button */
.nav-btn-booking {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: #FFFFFF !important;
    /* White text normal */
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
}

.nav-btn-booking::after {
    display: none !important;
    /* Remove underline dot */
}

.nav-btn-booking .arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-btn-booking:hover {
    background: #ffffff;
    color: var(--primary-color) !important;
    /* Button color on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(77, 163, 212, 0.4);
}

.nav-btn-booking:hover .arrow-icon {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Imagem local (substituível) */
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--bg-dark);
    /* fallback */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 11, 16, 0.4) 0%, rgba(8, 11, 16, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #FFFFFF;
    /* Pure white for the main text */
}

.hero h1 .text-fill {
    background: url('images/Fill.png') center/cover no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    /* White text normal */
    box-shadow: 0 4px 15px rgba(77, 163, 212, 0.3);
}

.btn-primary:hover {
    background: var(--text-main);
    color: var(--primary-color);
    /* Button color on hover */
    box-shadow: 0 6px 20px rgba(77, 163, 212, 0.5);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    /* White text normal */
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: var(--primary-color);
    /* Blue text on white hover */
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.fleet-section,
.bookings-section {
    padding: 6rem 0;
    position: relative;
}

/* Efeito de Clarão Moderno na Nossa Frota */
.fleet-section {
    overflow: hidden;
    background-color: #f8fafc;
    color: var(--bg-dark);
    /* Texto escuro */
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #e7e5e4 1px, transparent 1px),
        linear-gradient(to bottom, #e7e5e4 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 0 0;
    -webkit-mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px), repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px), radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
    mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px), repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px), radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.fleet-section .container {
    position: relative;
    z-index: 1;
    /* Garante que os cartões e títulos ficam acima do efeito glow */
}

/* Adaptação de Cores da Frota para o Fundo Branco */
.fleet-section .section-title p {
    color: #64748b;
}

.fleet-section .card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 35px rgba(10, 15, 25, 0.04);
}

.fleet-section .card:hover {
    border-color: rgba(10, 30, 80, 0.15);
    box-shadow: 0 20px 40px rgba(10, 15, 25, 0.1);
}

.fleet-section .card-title {
    color: var(--bg-dark);
}

.fleet-section .card-price {
    color: #64748b;
}

.fleet-section .card-price strong {
    color: var(--bg-dark);
}

/* Loader */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Grid & Cards */
.kayak-grid,
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(77, 163, 212, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-img {
    height: 220px;
    width: 100%;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(77, 163, 212, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-price strong {
    color: var(--text-main);
    font-size: 1.6rem;
}

.card .btn {
    width: 100%;
    margin-top: auto;
}

/* Booking Card adjustments */
.booking-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(10, 15, 25, 0.9));
}

.booking-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.booking-detail span:first-child {
    color: var(--text-muted);
}

.booking-status {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
    margin-top: 1rem;
}

.status-pendente {
    background: rgba(255, 170, 0, 0.15);
    color: #FFAA00;
}

.status-confirmado {
    background: rgba(0, 255, 136, 0.15);
    color: #00FF88;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.modal-subtitle {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Ensure datetime picks look good on dark mode */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.price-calculator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 240, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(77, 163, 212, 0.1);
}

.price-calculator span {
    color: var(--text-muted);
}

.price-calculator strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    bottom: 40px;
}

.toast.error {
    background: var(--accent);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: #05080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
    /* Helps push footer down if there is little content */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 70px;
    /* Larger in footer */
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    background: var(--bg-dark);
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    color: var(--bg-dark);
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #e7e5e4 1px, transparent 1px),
        linear-gradient(to bottom, #e7e5e4 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px), repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px), radial-gradient(ellipse 70% 60% at 50% 100%, #000 60%, transparent 100%);
    mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px), repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px), radial-gradient(ellipse 70% 60% at 50% 100%, #000 60%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    pointer-events: none;
    z-index: 0;
}

.info-section .container {
    position: relative;
    z-index: 1;
}

.info-section .section-title p {
    color: #64748b;
}

/* Radio Buttons Wrapper */
.info-radio-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

/* From Uiverse.io by 00Kubi — adapted to site palette */
.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 1rem;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-sizing: border-box;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15), -5px -5px 15px rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    width: 380px;
    font-size: 14px;
    gap: 0.5rem;
}

.radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
    position: relative;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    border: none;
    padding: 0.7rem 0;
    color: #2d3748;
    font-weight: 500;
    font-family: inherit;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    overflow: hidden;
}

.radio-inputs .radio input:checked+.name {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-dark);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.1), 3px 3px 8px rgba(0, 240, 255, 0.3);
    transform: translateY(2px);
}

.radio-inputs .radio:hover .name {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    transform: translateY(-1px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.radio-inputs .radio:hover input:checked+.name {
    transform: translateY(1px);
}

.radio-inputs .radio input:checked+.name {
    animation: radio-select 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes radio-select {
    0% {
        transform: scale(0.95) translateY(2px);
    }

    50% {
        transform: scale(1.05) translateY(-1px);
    }

    100% {
        transform: scale(1) translateY(2px);
    }
}

/* Info Card */
.info-card {
    max-width: 90%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.info-card-img {
    width: 280px;
    min-height: 280px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--bg-dark), #1a2332);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
}

.info-card-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    opacity: 0;
    position: absolute;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4));
}

.info-card-icon.active {
    opacity: 1;
    transform: scale(1);
}

.info-card-body {
    padding: 2rem;
}

.info-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 0.75rem;
}

.info-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}

/* Card content transition */
.info-card.switching .info-card-body {
    animation: cardFadeSwitch 0.4s ease;
}

@keyframes cardFadeSwitch {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(8px);
    }

    60% {
        opacity: 0;
        transform: translateY(-8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--glass-border);
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-links .nav-btn-booking {
        width: fit-content;
        padding: 0.6rem 1.4rem;
        margin-top: 0.5rem;
    }

    .card-img {
        height: 180px;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .radio-inputs {
        width: 100%;
        max-width: 340px;
    }

    .info-card {
        max-width: 95%;
        flex-direction: column-reverse;
        min-height: auto;
    }

    .info-card-img {
        width: 100%;
        min-height: 180px;
        border-radius: 20px 20px 0 0;
    }

    .info-section {
        padding: 4rem 0;
    }
}

/* From Uiverse.io by alexruix */
.uiverse-card {
    width: 100%;
    max-width: 320px;
    min-height: 380px;
    padding: .8em;
    background: #f5f5f5;
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.uiverse-card .card-img {
    background-color: #0f172a;
    height: 200px;
    width: 100%;
    border-radius: .5rem;
    transition: .3s ease;
}

.uiverse-card .card-info {
    padding-top: 5%;
    flex-grow: 1;
}

.uiverse-card svg {
    width: 20px;
    height: 20px;
}

.uiverse-card .card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/*Text*/
.uiverse-card .text-title {
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1.5;
    color: #252525;
}

.uiverse-card .text-body {
    font-size: .9em;
    padding-bottom: 10px;
    color: #64748b;
}

.uiverse-card:hover .card-img {
    transform: translateY(-15%);
    box-shadow: rgba(15, 23, 42, 0.25) 0px 13px 47px -5px, rgba(15, 23, 42, 0.3) 0px 8px 16px -8px;
}